home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / distutils / extension.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  7KB  |  213 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''distutils.extension
  5.  
  6. Provides the Extension class, used to describe C/C++ extension
  7. modules in setup scripts.'''
  8. __revision__ = '$Id: extension.py,v 1.19 2004/10/14 10:02:08 anthonybaxter Exp $'
  9. import os
  10. import string
  11. import sys
  12. from types import *
  13.  
  14. try:
  15.     import warnings
  16. except ImportError:
  17.     warnings = None
  18.  
  19.  
  20. class Extension:
  21.     '''Just a collection of attributes that describes an extension
  22.     module and everything needed to build it (hopefully in a portable
  23.     way, but there are hooks that let you be as unportable as you need).
  24.  
  25.     Instance attributes:
  26.       name : string
  27.         the full name of the extension, including any packages -- ie.
  28.         *not* a filename or pathname, but Python dotted name
  29.       sources : [string]
  30.         list of source filenames, relative to the distribution root
  31.         (where the setup script lives), in Unix form (slash-separated)
  32.         for portability.  Source files may be C, C++, SWIG (.i),
  33.         platform-specific resource files, or whatever else is recognized
  34.         by the "build_ext" command as source for a Python extension.
  35.       include_dirs : [string]
  36.         list of directories to search for C/C++ header files (in Unix
  37.         form for portability)
  38.       define_macros : [(name : string, value : string|None)]
  39.         list of macros to define; each macro is defined using a 2-tuple,
  40.         where \'value\' is either the string to define it to or None to
  41.         define it without a particular value (equivalent of "#define
  42.         FOO" in source or -DFOO on Unix C compiler command line)
  43.       undef_macros : [string]
  44.         list of macros to undefine explicitly
  45.       library_dirs : [string]
  46.         list of directories to search for C/C++ libraries at link time
  47.       libraries : [string]
  48.         list of library names (not filenames or paths) to link against
  49.       runtime_library_dirs : [string]
  50.         list of directories to search for C/C++ libraries at run time
  51.         (for shared extensions, this is when the extension is loaded)
  52.       extra_objects : [string]
  53.         list of extra files to link with (eg. object files not implied
  54.         by \'sources\', static library that must be explicitly specified,
  55.         binary resource files, etc.)
  56.       extra_compile_args : [string]
  57.         any extra platform- and compiler-specific information to use
  58.         when compiling the source files in \'sources\'.  For platforms and
  59.         compilers where "command line" makes sense, this is typically a
  60.         list of command-line arguments, but for other platforms it could
  61.         be anything.
  62.       extra_link_args : [string]
  63.         any extra platform- and compiler-specific information to use
  64.         when linking object files together to create the extension (or
  65.         to create a new static Python interpreter).  Similar
  66.         interpretation as for \'extra_compile_args\'.
  67.       export_symbols : [string]
  68.         list of symbols to be exported from a shared extension.  Not
  69.         used on all platforms, and not generally necessary for Python
  70.         extensions, which typically export exactly one symbol: "init" +
  71.         extension_name.
  72.       swig_opts : [string]
  73.         any extra options to pass to SWIG if a source file has the .i
  74.         extension.
  75.       depends : [string]
  76.         list of files that the extension depends on
  77.       language : string
  78.         extension language (i.e. "c", "c++", "objc"). Will be detected
  79.         from the source extensions if not provided.
  80.     '''
  81.     
  82.     def __init__(self, name, sources, include_dirs = None, define_macros = None, undef_macros = None, library_dirs = None, libraries = None, runtime_library_dirs = None, extra_objects = None, extra_compile_args = None, extra_link_args = None, export_symbols = None, swig_opts = None, depends = None, language = None, **kw):
  83.         if not type(name) is StringType:
  84.             raise AssertionError, "'name' must be a string"
  85.         if not type(sources) is ListType or map(type, sources) == [
  86.             StringType] * len(sources):
  87.             raise AssertionError, "'sources' must be a list of strings"
  88.         self.name = name
  89.         self.sources = sources
  90.         if not include_dirs:
  91.             pass
  92.         self.include_dirs = []
  93.         if not define_macros:
  94.             pass
  95.         self.define_macros = []
  96.         if not undef_macros:
  97.             pass
  98.         self.undef_macros = []
  99.         if not library_dirs:
  100.             pass
  101.         self.library_dirs = []
  102.         if not libraries:
  103.             pass
  104.         self.libraries = []
  105.         if not runtime_library_dirs:
  106.             pass
  107.         self.runtime_library_dirs = []
  108.         if not extra_objects:
  109.             pass
  110.         self.extra_objects = []
  111.         if not extra_compile_args:
  112.             pass
  113.         self.extra_compile_args = []
  114.         if not extra_link_args:
  115.             pass
  116.         self.extra_link_args = []
  117.         if not export_symbols:
  118.             pass
  119.         self.export_symbols = []
  120.         if not swig_opts:
  121.             pass
  122.         self.swig_opts = []
  123.         if not depends:
  124.             pass
  125.         self.depends = []
  126.         self.language = language
  127.         if len(kw):
  128.             L = kw.keys()
  129.             L.sort()
  130.             L = map(repr, L)
  131.             msg = 'Unknown Extension options: ' + string.join(L, ', ')
  132.             if warnings is not None:
  133.                 warnings.warn(msg)
  134.             else:
  135.                 sys.stderr.write(msg + '\n')
  136.         
  137.  
  138.  
  139.  
  140. def read_setup_file(filename):
  141.     parse_makefile = parse_makefile
  142.     expand_makefile_vars = expand_makefile_vars
  143.     _variable_rx = _variable_rx
  144.     import distutils.sysconfig
  145.     TextFile = TextFile
  146.     import distutils.text_file
  147.     split_quoted = split_quoted
  148.     import distutils.util
  149.     vars = parse_makefile(filename)
  150.     file = TextFile(filename, strip_comments = 1, skip_blanks = 1, join_lines = 1, lstrip_ws = 1, rstrip_ws = 1)
  151.     extensions = []
  152.     while None:
  153.         line = file.readline()
  154.         if line is None:
  155.             break
  156.         
  157.         if _variable_rx.match(line):
  158.             continue
  159.         
  160.         if line[-1] == line[-1]:
  161.             pass
  162.         elif line[-1] == '*':
  163.             file.warn("'%s' lines not handled yet" % line)
  164.             continue
  165.         
  166.         line = expand_makefile_vars(line, vars)
  167.         words = split_quoted(line)
  168.         module = words[0]
  169.         ext = Extension(module, [])
  170.         append_next_word = None
  171.         for word in words[1:]:
  172.             if append_next_word is not None:
  173.                 append_next_word.append(word)
  174.                 append_next_word = None
  175.                 continue
  176.             
  177.             suffix = os.path.splitext(word)[1]
  178.             switch = word[0:2]
  179.             value = word[2:]
  180.             if suffix in ('.c', '.cc', '.cpp', '.cxx', '.c++', '.m', '.mm'):
  181.                 ext.sources.append(word)
  182.                 continue
  183.             None if switch == '-I' else equals == -1
  184.             if switch == '-U':
  185.                 ext.undef_macros.append(value)
  186.                 continue
  187.             if switch == '-C':
  188.                 ext.extra_compile_args.append(word)
  189.                 continue
  190.             if switch == '-l':
  191.                 ext.libraries.append(value)
  192.                 continue
  193.             if switch == '-L':
  194.                 ext.library_dirs.append(value)
  195.                 continue
  196.             if switch == '-R':
  197.                 ext.runtime_library_dirs.append(value)
  198.                 continue
  199.             if word == '-rpath':
  200.                 append_next_word = ext.runtime_library_dirs
  201.                 continue
  202.             if word == '-Xlinker':
  203.                 append_next_word = ext.extra_link_args
  204.                 continue
  205.             None if word == '-Xcompiler' else value
  206.             if suffix in ('.a', '.so', '.sl', '.o', '.dylib'):
  207.                 ext.extra_objects.append(word)
  208.                 continue
  209.             file.warn("unrecognized argument '%s'" % word)
  210.         
  211.     return extensions
  212.  
  213.